home *** CD-ROM | disk | FTP | other *** search
/ Best of www.BestZips.com (Collector's Edition) / Best of WWW.BESTZIPS.COM Collector's Edition (JCSM Shareware) (JCS Marketing).ISO / bprogrms / pdquot6e.zip / QUOTEDAT.EXE / STATE.BAT < prev    next >
DOS Batch File  |  1994-10-28  |  577b  |  21 lines

  1. echo off
  2. cls
  3. if "%1" == "" goto error
  4. if not exist quote.%1 goto notfound
  5. if not exist labor.%1 goto notfound
  6. if not exist labrgrp.%1 goto notfound
  7. echo The following 3 State Files are being copied . . .
  8. copy quote.%1 quote.mem
  9. copy labor.%1 labor.dbf
  10. copy labrgrp.%1 labrgrp.ntx
  11. quote
  12. goto exit
  13. :notfound
  14. echo One or more of the QUOTE.%1, LABOR.%1 or LABRGRP.%1 files is/are missing.
  15. goto exit
  16. :error
  17. cls
  18. echo You did not enter the 2 character State Code.  Please review Appendix C of
  19. echo the QUOTE.DOC file.  Please read Appendix C and try again.
  20. :exit
  21.